NavigationCard

fun NavigationCard(text: String, icon: ImageVector, navigate: () -> Unit)

Composable function that creates a navigation card with an icon, text, and a forward arrow button. The card is clickable and triggers the provided navigation action when clicked.

Parameters

text

The text to be displayed on the card.

icon

The icon to be displayed next to the text.

navigate

The lambda function that will be invoked when the card is clicked, typically used for navigation.